55f200fe3e61990b2246fcb176cb0ce9a20dea9f,src/test/java/net/authorize/cim/functional_test/CIMTest.java,CIMTest,setUp,#,60

Before Change



		// Create a billing info
		//
		billingInfo = (Address) Address.createAddress();
		billingInfo.setFirstName(firstName + System.currentTimeMillis());
		billingInfo.setLastName(lastName);
		billingInfo.setCompany(company);

After Change



		// Create a billing info
		//
		billingInfo = Address.createAddress();
		billingInfo.setFirstName(firstName + System.currentTimeMillis());
		billingInfo.setLastName(lastName);
		billingInfo.setCompany(company);